home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcoop.arc / TCOOP2.ARC / GRPHSCRN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  434 b   |  20 lines

  1. // grphscrn.h:  A set of utilities used in the graphics 
  2. // applications in Chapters 13 and 14 
  3.  
  4. #ifndef H_GRPHSCRN
  5. #define H_GRPHSCRN
  6.  
  7. #include "gwsounit.h"
  8.  
  9. enum MouseOpt { NoMouse, MouseRequired, MouseOptional };
  10.  
  11. extern Wso *FullScrn;
  12. extern MsgPkt StartMsg;
  13.  
  14. void Setup(int MouseOpt, int &GDriver, int &GMode, 
  15.            char *DriverPath, unsigned Font);
  16. void MainEventLoop(void);
  17. void CleanUp(void);
  18.  
  19. #endif
  20.